*/
protected final List getAttributeNames()
{
return getSessionStore().getAttributeNames(RequestCycle.get().getRequest());
}
/**
*/
protected final List getAttributeNames()
{
RequestCycle cycle = RequestCycle.get();
if (cycle != null)
{
return getSessionStore().getAttributeNames(cycle.getRequest());
}
return null;
}
/**